home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2004 #9 / Amiga Plus CD - 2004 - No. 09.iso / amigaplus / tools / amigaos4_only / ifxlite / imagefx3 / rexx / autofx / saverenderedas.ifx < prev    next >
Text File  |  2004-08-03  |  1KB  |  58 lines

  1. /*
  2.  * $VER: SaveRenderedAs.ifx 2.5 (27.02.96)
  3.  * Copyright © 1992-1996 Nova Design, Inc.
  4.  * Written by Thomas Krehbiel
  5.  *
  6.  * Save rendered image.
  7.  *
  8.  * Inputs:
  9.  *    Word(Arg(1),1) = Frame number (1 - N)
  10.  *    Word(Arg(1),2) = Main filename ("-" if not specified)
  11.  *    Word(Arg(1),3) = Swap filename ("-" if not specified)
  12.  *    Word(Arg(1),4) = Sequence number (?)
  13.  *    Word(Arg(1),5) = Total number of frames (N)
  14.  *
  15.  * Returns:
  16.  *    0 if successful, non-zero on failure
  17.  *
  18.  */
  19.  
  20. OPTIONS RESULTS
  21.  
  22. /* gracefully exit if no buffer */
  23. GetMain
  24. IF rc ~= 0 THEN EXIT 0
  25.  
  26. framenum = Word(Arg(1),1)
  27. mainname = Word(Arg(1),2)
  28. swapname = Word(Arg(1),3)
  29. seq      = Word(Arg(1),4)
  30. framemax = Word(Arg(1),5)
  31.  
  32. path = GETCLIP('Autofx_SaveRenderAs_Path'||seq)
  33. type = GETCLIP('Autofx_SaveRenderAs_Type'||seq)
  34. opts = GETCLIP('Autofx_SaveRenderAs_Opts'||seq)
  35. ext  = GETCLIP('Autofx_SaveRenderAs_Ext'||seq)
  36.  
  37. i = POS('*', ext)
  38. IF i > 0 THEN ext = LEFT(ext,i-1) || RIGHT('00000'||framenum,5) || SUBSTR(ext,i+1)
  39.  
  40. outfile = mainname||ext
  41. IF path ~= "" THEN DO
  42.  
  43.    i = LASTPOS('/',mainname)
  44.    IF i = 0 THEN i = LASTPOS(':',mainname)
  45.  
  46.    IF i = 0 THEN
  47.       file = mainname
  48.    ELSE
  49.       file = SUBSTR(mainname,i+1)
  50.  
  51.    IF RIGHT(path,1) ~= ':' THEN path = path||'/'
  52.    outfile = path||file||ext
  53.  
  54.    END
  55.  
  56. SaveRenderedAs type '"'outfile'"' opts
  57. EXIT rc
  58.